090eb3ffbc37cb5408acf76188a29841ef92a9ec,src/main/java/edu/uncc/cs/bridges_v21/base/LinkVisualizer.java,LinkVisualizer,getOpacity,#,177

Before Change


	 * 	@return the opacity value (in the range 0.0-1.0
	 */
	public double getOpacity() {
		return ((double) color.getAlpha())/255.;
	}

	public String getLinkProperties() {

After Change


	 * 	@return the opacity value (in the range 0.0-1.0
	 */
	public float getOpacity() {
		return (color.getAlpha());
	}

	public String getLinkProperties() {